home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / t-o-p-logo.scm < prev    next >
Text File  |  2009-12-15  |  6KB  |  155 lines

  1. ;;  Trace of Particles Effect
  2. ;; Shuji Narazaki (narazaki@InetQ.or.jp)
  3. ;; Time-stamp: <97/03/15 17:27:33 narazaki@InetQ.or.jp>
  4. ;; Version 0.2
  5.  
  6. (define (apply-t-o-p-logo-effect img
  7.                                  logo-layer
  8.                                  b-size
  9.                                  hit-rate
  10.                                  edge-size
  11.                                  edge-only
  12.                                  base-color
  13.                                  bg-color)
  14.   (let* (
  15.         (width (car (gimp-drawable-width logo-layer)))
  16.         (height (car (gimp-drawable-height logo-layer)))
  17.         (logo-layer-mask (car (gimp-layer-create-mask logo-layer ADD-BLACK-MASK)))
  18.         (sparkle-layer (car (gimp-layer-new img width height RGBA-IMAGE "Sparkle" 100 NORMAL-MODE)))
  19.         (shadow-layer (car (gimp-layer-new img width height RGBA-IMAGE "Shadow" 90 ADDITION-MODE)))
  20.         (bg-layer (car (gimp-layer-new img width height RGB-IMAGE "Background" 100 NORMAL-MODE)))
  21.         (selection 0)
  22.         (white '(255 255 255))
  23.         )
  24.  
  25.     (gimp-context-push)
  26.  
  27.     (script-fu-util-image-resize-from-layer img logo-layer)
  28.     (script-fu-util-image-add-layers img sparkle-layer shadow-layer bg-layer)
  29.     (gimp-selection-none img)
  30.     (gimp-edit-clear shadow-layer)
  31.     (gimp-edit-clear sparkle-layer)
  32.     (gimp-context-set-background base-color)
  33.     (gimp-edit-fill sparkle-layer BACKGROUND-FILL)
  34.     (gimp-selection-layer-alpha logo-layer)
  35.     (set! selection (car (gimp-selection-save img)))
  36.     (gimp-selection-grow img edge-size)
  37.     (plug-in-noisify RUN-NONINTERACTIVE img sparkle-layer FALSE
  38.                      (* 0.1 hit-rate) (* 0.1 hit-rate) (* 0.1 hit-rate) 0.0)
  39.     (gimp-selection-border img edge-size)
  40.     (plug-in-noisify RUN-NONINTERACTIVE img sparkle-layer FALSE hit-rate hit-rate hit-rate 0.0)
  41.     (gimp-selection-none img)
  42.     (plug-in-sparkle RUN-NONINTERACTIVE img sparkle-layer 0.03 0.49 width 6 15 1.0 0.0 0.0 0.0 FALSE FALSE FALSE 0)
  43.     (gimp-selection-load selection)
  44.     (gimp-selection-shrink img edge-size)
  45.     (gimp-levels sparkle-layer 0 0 255 1.2 0 255)
  46.     (gimp-selection-load selection)
  47.     (gimp-selection-border img edge-size)
  48.     (gimp-levels sparkle-layer 0 0 255 0.5 0 255)
  49.     (gimp-selection-load selection)
  50.     (gimp-selection-grow img (/ edge-size 2.0))
  51.     (gimp-selection-invert img)
  52.     (gimp-edit-clear sparkle-layer)
  53.     (if (= edge-only TRUE)
  54.         (begin
  55.           (gimp-selection-load selection)
  56.           (gimp-selection-shrink img (/ edge-size 2.0))
  57.           (gimp-edit-clear sparkle-layer)
  58.           (gimp-selection-load selection)
  59.           (gimp-selection-grow img (/ edge-size 2.0))
  60.           (gimp-selection-invert img)))
  61.     (gimp-context-set-foreground '(0 0 0))
  62.     (gimp-context-set-background '(255 255 255))
  63.     (gimp-context-set-brush "Circle Fuzzy (11)")
  64.     (gimp-selection-feather img b-size)
  65.     (gimp-edit-fill shadow-layer BACKGROUND-FILL)
  66.  
  67.     (gimp-selection-none img)
  68.     (gimp-context-set-background bg-color)
  69.     (gimp-edit-fill bg-layer BACKGROUND-FILL)
  70.  
  71.     (gimp-drawable-set-visible logo-layer 0)
  72.     (gimp-image-set-active-layer img sparkle-layer)
  73.  
  74.     (gimp-context-pop)
  75.   )
  76. )
  77.  
  78.  
  79. (define (script-fu-t-o-p-logo-alpha img
  80.                                     logo-layer
  81.                                     b-size
  82.                                     hit-rate
  83.                                     edge-size
  84.                                     edge-only
  85.                                     base-color
  86.                                     bg-color)
  87.   (begin
  88.     (gimp-image-undo-group-start img)
  89.     (apply-t-o-p-logo-effect img logo-layer b-size hit-rate
  90.                              edge-size edge-only base-color bg-color)
  91.     (gimp-image-undo-group-end img)
  92.     (gimp-displays-flush)
  93.   )
  94. )
  95.  
  96. (script-fu-register "script-fu-t-o-p-logo-alpha"
  97.   _"_Particle Trace..."
  98.   _"Add a Trace of Particles effect to the selected region (or alpha)"
  99.   "Shuji Narazaki (narazaki@InetQ.or.jp)"
  100.   "Shuji Narazaki"
  101.   "1997"
  102.   "RGBA"
  103.   SF-IMAGE      "Image"                 0
  104.   SF-DRAWABLE   "Drawable"              0
  105.   SF-ADJUSTMENT _"Border size (pixels)" '(20 1 200 1 10 0 1)
  106.   SF-ADJUSTMENT _"Hit rate"             '(0.2 0 1 .01 .01 2 0)
  107.   SF-ADJUSTMENT _"Edge width"           '(2 0 128 1 1 0 0)
  108.   SF-TOGGLE     _"Edge only"            FALSE
  109.   SF-COLOR      _"Base color"           '(0 40 0)
  110.   SF-COLOR      _"Background color"     "white"
  111. )
  112.  
  113. (script-fu-menu-register "script-fu-t-o-p-logo-alpha"
  114.                          "<Image>/Filters/Alpha to Logo")
  115.  
  116.  
  117. (define (script-fu-t-o-p-logo text
  118.                               size
  119.                               fontname
  120.                               hit-rate
  121.                               edge-size
  122.                               edge-only
  123.                               base-color
  124.                               bg-color)
  125.   (let* ((img (car (gimp-image-new 256 256 RGB)))
  126.          (border (/ size 5))
  127.          (text-layer (car (gimp-text-fontname img -1 0 0 text (* border 2) TRUE size PIXELS fontname))))
  128.     (gimp-image-undo-disable img)
  129.     (apply-t-o-p-logo-effect img text-layer border hit-rate
  130.                              edge-size edge-only base-color bg-color)
  131.     (gimp-image-undo-enable img)
  132.     (gimp-display-new img)
  133.   )
  134. )
  135.  
  136. (script-fu-register "script-fu-t-o-p-logo"
  137.   _"_Particle Trace..."
  138.   _"Create a logo using a Trace Of Particles effect"
  139.   "Shuji Narazaki (narazaki@InetQ.or.jp)"
  140.   "Shuji Narazaki"
  141.   "1997"
  142.   ""
  143.   SF-STRING     _"Text"               "GIMP"
  144.   SF-ADJUSTMENT _"Font size (pixels)" '(100 1 1000 1 10 0 1)
  145.   SF-FONT       _"Font"               "Becker"
  146.   SF-ADJUSTMENT _"Hit rate"           '(0.2 0 1 .01 .01 2 0)
  147.   SF-ADJUSTMENT _"Edge width"         '(2 0 128 1 1 0 0)
  148.   SF-TOGGLE     _"Edge only"          FALSE
  149.   SF-COLOR      _"Base color"         '(0 40 0)
  150.   SF-COLOR      _"Background color"   "white"
  151. )
  152.  
  153. (script-fu-menu-register "script-fu-t-o-p-logo"
  154.                          "<Image>/File/Create/Logos")
  155.